home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / text / mac / faqs.391 < prev    next >
Encoding:
Text File  |  1996-02-12  |  27.7 KB  |  734 lines

  1. Frequently Asked Questions (FAQS);faqs.391
  2.  
  3.  
  4.  
  5.  
  6. ----------------------------------------
  7. 2: Composition Software
  8.  
  9. The programs examined here are "CSound",
  10.  
  11. ----------------------------------------
  12. 2.1: CSound
  13.  
  14. CSound is a suite of music software from MIT's MediaLab.  It runs on
  15. VAXes, DEC-RISCS, SUNS, NeXT and Macintoshes.  It is available by
  16. anonymous ftp from media-lab.media.mit.edu
  17.  
  18. It has a substantial manual, and comes with a number of examples.
  19.  
  20. It produces sound files in a variety of formats, including 8-bit char,
  21. 8-bit a-law, 8-bit u-law, 16-bit short ints, 32-bit long ints, or
  22. 32-bit floats.  It can be played directly on SUN and NeXT.
  23.  
  24. There is a mailing list for CSound users, which can be joined by
  25. sending mail to csound-request@media-lab.media.mit.edu
  26.  
  27. The following is from the UNIX manual page.
  28.  
  29. "Csound is an environment in which a "scorefile" or external event
  30. sequence can invoke arbitrarily complex signal-processing
  31. "instruments" to produce sound. Audio may be displayed during its
  32. creation, and the resulting sound sent to an on-line audio device or
  33. to an intermediate soundfile for later playback.  Csound is invoked by
  34. a single command, which induces three phases of action:
  35.  
  36.     Score sorting
  37.     Orchestra translation and loading
  38.     Sound generation (audio processing and synthesis).
  39.  
  40. "Csound audio processing is supported by various score manipulation
  41. languages (SCOT, CSCORE, SCSORT, EXTRACT) and by soundfile
  42. analysis-synthesis methods including additive synthesis (ADSYN),
  43. linear predictive coding (LPC), and phase vocoding (PVOC).
  44.  
  45. "There is no complete on-line manual, but man entries exist for the
  46. stand-alone analysis and scoring programs.  More complete information
  47. can be found in the troff-able "Csound Reference Manual," which
  48. provides an overview, tutorial, details of behavior, and step-by-step
  49. examples."
  50.  
  51. ----------------------------------------
  52. 2.2: CMIX
  53.  
  54. Cmix is a loosely connected group of utilities for maniplating
  55. soundfiles.  The system is available by FTP.
  56.  
  57. The following description is taken from the UNIX manual page.
  58.  
  59. "Cmix is a package of routines for editting, processing, and creating
  60. soundfiles.  It also includes a library of routines designed to make
  61. it easier to write C programs which deal with soundfiles.
  62.  
  63. Typically, the user prepares a file of calls to various cmix
  64. routines, and then invokes them by saying something like:
  65.  
  66.     mix < my.data
  67.  
  68. Consider the following example data file:
  69.  
  70.      input("snd_directory/elvis")
  71.      output("snd_directory/elvis+industry")
  72.      setline(0,0,1,1,10,1,11,0)
  73.      mix(8.6,0,21,1,0)
  74.      input("snd_directory/industry")
  75.      setline(0,0,5,1,11,0)
  76.      mix(0,0,11,1,0)
  77.  
  78. This first opens the file "snd_directory/elvis" for input, and the
  79. file "snd_directory/elvis+industry" for the output of the new mix.
  80. Setline creates the amplitude envelope to be used for a subsequent
  81. call to mix.  The arguments to setline are pairs of time/amplitude
  82. values.  It interpolates linearly between these points.  The next call
  83. is to mix and asks to start copying the current input file to the
  84. current outputfile, starting at time 8.6 in the input file, and time 0
  85. in the output file.  It will mix until time 21 on the input file is
  86. reached.  The fourth argument to mix is the relative amplitude of the
  87. current input file, and the final argument is used to determine
  88. channel location (see man page on mix).
  89.  
  90. Then, with a different envelope from the next call to setline there is
  91. another call to mix "snd_directory_industry" into the same output
  92. file.
  93.  
  94. To cause this to happen, once this data file has been prepared, the
  95. user should type:
  96.  
  97.     mix <my.data >&my.data.output &
  98.  
  99. Note that the data file passes through the Minc preprocessor before
  100. being passed to cmix.  Be sure to consult the manual page on Minc for
  101. more information.
  102.  
  103. This is the general procedure for using any of the various cmix
  104. utilities -- creating a data file and then invoking the routines with
  105. a cal to cmix.  User writtne subroutines which either augment or
  106. replace those in cmix can be compiled in the users own filespace.  See
  107. the manual pages on usersub and Minc for more information.
  108.  
  109. ----------------------------------------
  110. 3: Inspirational Sources
  111.  
  112. Obviously there isn't one true method of obtaining inspiration which
  113. will enable everyone to become Bach, but here are some tricks that
  114. have worked for people on rec.music.compose in the past:
  115.  - walking.  The rhythm of walking seems to help people get a
  116.    concrete foundation to hum to.
  117.  - other music.  Listen to things that seem incomplete to you, and
  118.    try and arrange it how it should have sounded.
  119.  - theory exercises.  Play with some exercises in theory, and maybe
  120.    something that is pleasant will jump out at you.
  121.  
  122.  
  123. ----------------------------------------
  124. 4: Getting published
  125.  
  126. [need info]
  127.  
  128. ----------------------------------------
  129. 4.1: Copyright
  130.  
  131. The copyright laws will depend on the country you are in.  In general,
  132. it is safe to select books whose authors/editors died more than 74
  133. years ago.  Some things to beware of are:
  134.  - missing copyright notices.  In any country that has signed the
  135.    Berne Convention agreement about copyright, there doesn't need
  136.    to be a copyright notice.  Simply publishing the work is enough.
  137.  - facsimile editions.  In general the actual copied music isn't
  138.    under a new copyright, but any commentary/annotation is.
  139.  - collections.  If someone collects music and publishes it, they
  140.    may be able to have a collection copyright for the whole
  141.    collection.
  142.  - editors.  Editors who rearrange, transpose or otherwise change
  143.    the text have a new copyright on the new work.
  144.  - audio editions.  Actual audio music has a different copyright
  145.    lifetime than sheet music.
  146.  
  147. Discussion on copyright issues should not take place on
  148. rec.music.compose, but should be directed to the copyright mailing
  149. list (to join, send mail to listserv@cni.org).
  150.  
  151. ----------------------------------------
  152. 5: Networked Music
  153.  
  154. This section discusses programs and groups that are for musicians
  155. that have access to UseNet or Internet.
  156.  
  157. ----------------------------------------
  158. 5.1: NetJam
  159.  
  160. For information on NetJam, see the NetJam FAQ.  This is posted
  161. fortnightly to comp.music, rec.music.makers and rec.music.synth.
  162.  
  163. ----------------------------------------
  164. 6: Theory
  165.  
  166. Topics covered in this chapter are Parallel octaves and fifths,
  167. general compositional hints, rhythm, stochastic music and "diablo
  168. in musica".
  169.  
  170. ----------------------------------------
  171. 6.1: Parallel octaves and fifths
  172.  
  173. Parallel octaves and fifths occur when in polyphonic (multiple voice)
  174. music when two voices that are separated by a fifth or an octave move
  175. up or down by the same interval.  The reason these are considered bad
  176. in traditional counterpoint stems from many listener's perceptions of
  177. the voices.  Most people feel that when the voices move in parallel
  178. fifths or octaves, the sense of there being two voices is lost; that
  179. the voices "merge" into one.
  180.  
  181. Similar effects are heard by relatively few people, on other
  182. intervals, but because not as many lose the sense of polyphony those
  183. intervals aren't "forbidden".
  184.  
  185. Having voices moving in parallel while separated by an octave or fifth
  186. isn't necessarily bad.  It has been used by composers, with
  187. well-defined means of avoiding the merging sound.
  188.  
  189. For more information on the parallel octaves and fifths subject, see
  190. Matt Field's essay "Gems 2" which was posted to rec.music.compose.
  191. [ftp-site?]
  192.  
  193. ----------------------------------------
  194. 6.2: Compositional hints (a-la gems)
  195.  
  196. [need info]
  197.  
  198. ----------------------------------------
  199. 6.3: diablo in musica
  200.  
  201. [need info]
  202.  
  203. ----------------------------------------
  204. 6.4: Rhythm
  205.  
  206. [need info]
  207.  
  208. ----------------------------------------
  209. 6.5: Stochastic Music
  210.  
  211. Stochastic music is the name given to a style of generation of musical
  212. ideas developed by Iannis Xenakis, and well described in his book
  213. "Formalized Music".  This is not the same as random music, but rather
  214. describes a technique for developing a musical progress with a random
  215. walk-like method.
  216.  
  217.  
  218. ----------------------------------------
  219. 7: Orchestration
  220.  
  221. [need info]
  222.  
  223.  
  224. ----------------------------------------
  225. 8: Books
  226.  
  227. The books in this section are categorised by the subjects they cover.
  228. The entries are in bib format.  That is (taken from the man-page
  229. for addbib(1)):
  230.   %A   Author's name
  231.   %B   Book containing article referenced
  232.   %C   City (place of publication)
  233.   %D   Date of publication
  234.   %E   Editor of book containing article referenced
  235.   %F   Footnote number or label (supplied by refer)
  236.   %G   Government order number
  237.   %H   Header commentary, printed before reference
  238.   %I   Issuer (publisher)
  239.   %J   Journal containing article
  240.   %K   Keywords to use in locating reference
  241.   %L   Label field used by -k option of refer
  242.   %M   Bell Labs Memorandum (undefined)
  243.   %N   Number within volume
  244.   %O   Other commentary, printed at end of reference
  245.   %P   Page number(s)
  246.   %Q   Corporate or Foreign Author (unreversed)
  247.   %R   Report, paper, or thesis (unpublished)
  248.   %S   Series title
  249.   %T   Title of article or book
  250.   %V   Volume number
  251.   %X   Abstract - used by roffbib, not by refer
  252.  
  253. ----------------------------------------
  254. 8.1: Harmony
  255.  
  256. ----------------------------------------
  257. 8.2: Counterpoint
  258.  
  259. %A C.H. Kitson
  260. %T The Art of Counterpoint
  261. %I Clarendon Press
  262. %D 1907
  263. %O This is a detailed book, but is rather confusing to the beginner.
  264.    Covers classical style (Palestrina) counterpoint.
  265.  
  266. %A Johann Phillip Kirnberger
  267. %T The Art of Strict Musical Composition
  268. %I Yale University Press
  269. %D 1982
  270. %S Music Theory Translation Series
  271. %O A very clear book with numerous examples.  This has a section on
  272.    counterpoint which explains simple counterpoint in two or more
  273.    parts.
  274.  
  275. ----------------------------------------
  276. 8.3: History
  277.  
  278. [need info]
  279.  
  280. ----------------------------------------
  281. 8.4: Composition
  282.  
  283. %A Johann Phillip Kirnberger
  284. %T The Art of Strict Musical Composition
  285. %I Yale University Press
  286. %D 1982
  287. %S Music Theory Translation Series
  288. %O A very clear book with numerous examples.  This has a section on
  289.    counterpoint which explains simple counterpoint in two or more
  290.    parts.
  291.  
  292. %A Robert Twain Adams
  293. %T Electronic Music Composition for Beginners
  294. %I Dubuque, Iowa: Wm. C. Brown
  295. %D c1986
  296. %O Electronic composition.  ISBN 0-697-00457-0 (pbk.)
  297.  
  298. %A Iannis Xenakis
  299. %T Formalized Music
  300. %I Indiana University Press
  301. %D 1971
  302. %O Revised and enlarged edition published Pendragon Press (1992).
  303.  
  304. ----------------------------------------
  305. 8.5: Technology
  306.  
  307. %A F. Richard Moore
  308. %T Elements of Computer Music
  309. %I Prentice-Hall
  310. %D 1990
  311. %O Lots of stuff on software synthesis, and more, all centered around
  312.    cmusic.  ISBN: 0-13252-552-6 $38.00 + $4.00 shipping UPS surface
  313.  
  314. %A Tom Darter, Greg Armbruster
  315. %T The Art of Electronic Music
  316. %I New York, Quill
  317. %D c1984
  318. %O "...Edited from material originally published in Keyboard
  319.    magazine from 1975 to 1983"--T.p. verso.
  320.    Electronic music--History and criticism.
  321.    Musical instruments, Electronic.
  322.    Synthesizer (Musical instrument)
  323.    Musicians--Interviews.
  324.    ISBN: 0-688-03106-4 (pbk.) : $15.95
  325.    ISBN: 0-688-03105-6
  326.  
  327. %A Herbert Russcol
  328. %T The liberation of sound: an introduction to electronic music
  329. %I New York: Da Capo Press
  330. %D 1994 (I'm presuming this is a joke)
  331. %S Da Capo Press music reprint series
  332. %C Notes: Reprint. Originally published: Englewood Cliffs, N.J. :
  333.    Subjects: Electronic music--History and criticism.
  334.    ISBN: 0-306-76263-3 : $35.00
  335.  
  336.  
  337. ----------------------------------------
  338. 8.5: Orchestration
  339.  
  340. [need info]
  341.  
  342. ----------------------------------------
  343. 9: Ethno-musicology
  344.  
  345. [need info]
  346.  
  347. ----------------------------------------
  348. 10: Hardware
  349.  
  350. You can buy many different types of hardware to help you wish
  351. composition.  You should see the following newsgroups for help in
  352. choosing and buying hardware (which newsgroups you ask for help will
  353. depend on your existing setup and whether you have decided what to buy
  354. yet):
  355.   comp.sys.ibmpc.soundcards
  356.   comp.sys.amiga.audio
  357.   rec.music.synth
  358.   rec.music.makers
  359.   rec.music.marketplace
  360.   comp.music
  361.  
  362. [any others?  Are these bad groups?]
  363.  
  364. ----------------------------------------
  365. Credits
  366.  
  367. jpff@maths.bath.ac.uk
  368. Nathan Torkington (gnat@kauri.vuw.ac.nz)
  369. Xref: bloom-picayune.mit.edu rec.music.bluenote:20535 rec.music.info:668 news.answers:4258
  370. Newsgroups: rec.music.bluenote,rec.music.info,news.answers
  371. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!spool.mu.edu!uunet!mcsun!sun4nl!dutrun!recmusic
  372. From: linimon@nominil.lonesome.com (Mark Linimon)
  373. Subject: FAQ: rec.music.bluenote: frequently asked questions
  374. Message-ID: <bluenote_faq_722851816@nominil.lonesome.com>
  375. Followup-To: poster
  376. Summary: Answers to blues and jazz frequently asked questions (periodic posting)
  377. Originator: usenet@duttncb.tn.tudelft.nl
  378. Supersedes: <bluenote_faq_720399614@nominil.lonesome.com>
  379. Sender: usenet@duttncb.tn.tudelft.nl
  380. Nntp-Posting-Host: cygnus.cp.tn.tudelft.nl
  381. Reply-To: linimon@nominil.lonesome.com
  382. Organization: Lonesome Dove Computing Services
  383. Date: Sat, 28 Nov 1992 11:07:28 GMT
  384. Approved: rec-music-info@cp.tn.tudelft.nl
  385. Expires: Fri, 8 Jan 1993 08:09:48 GMT
  386. Lines: 374
  387.  
  388. Archive-name: music/bluenote/faq
  389. Version: 1.0
  390. Last-Modified: Thu Oct 29 11:36:49 EST 1992
  391.  
  392. This posting provides a (possibly biased) overview of newsgroup
  393. rec.music.bluenote by summarizing the history, common past topics, and
  394. frequently asked questions.
  395.  
  396. A companion posting to this one, "FAQ: rec.music.bluenote: welcome to
  397. rec.music.bluenote" <bluenote_welcome_722851816@nominil.lonesome.com>,
  398. complements this one by providing a concise introduction to the group.
  399. Another posting, "FAQ: rec.music.bluenote: sources of information",
  400. <bluenote_sources_722851816@nominil.lonesome.com>, provides references
  401. to books, magazines, media, and festivals.
  402.  
  403. These articles are repeated periodically for the benefit of new readers.
  404.  
  405. ----------------------------------------------------------------------
  406.  
  407. Subject: table of contents
  408.  
  409.     Subject: What is the charter of rec.music.bluenote?
  410.     Subject: What is considered good net.etiquette on rec.music.bluenote?
  411.     Subject: What have some common past topics been?
  412.     Subject: What are the best 100 jazz albums?
  413.     Subject: What are the best 100 blues albums?
  414.     Subject: Is [jazz | blues] currently [dying | undergoing a rebirth]?
  415.     Subject: Is [fusion | avant-garde | etc.] really jazz?
  416.     Subject: I think X is a much better player than Y.
  417.     Subject: What are "Fake Books?"  What about "Real Books?"
  418.     Subject: What do people think of Wynton Marsalis?
  419.     Subject: Who did that music on the Charlie Brown specials?
  420.     Subject: What is a "mojo"?
  421.     Subject: Why isn't there a rec.music.jazz?  Rec.music.blues?
  422.     Subject: A brief history of rec.music.bluenote.
  423.     Subject: Support live music! [FAQ Editor's personal soapbox]
  424.     Subject: Contributions to rec.music.bluenote FAQs.
  425.  
  426. ------------------------------
  427.  
  428. Subject: What is the charter of rec.music.bluenote?
  429.  
  430. The charter of rec.music.bluenote is to provide a forum for discussion
  431. of both jazz and blues music, both past and future.  The group is
  432. unmoderated; participation is open to all.
  433.  
  434. [There was no mechanism at the time of the newsgroup creation to include a
  435. formal charter in the vote, like there is today.  However, the above is
  436. pretty close to what the original consensus was.  See "A brief history of
  437. rec.music.bluenote", below, for details. -- Mark]
  438.  
  439. Note that the listing in the canonical "newsgroups" file is:
  440.  
  441. rec.music.bluenote    Discussion of jazz, blues, and related types of music.
  442.  
  443. ------------------------------
  444.  
  445. Subject: What is considered good net.etiquette on rec.music.bluenote?
  446.  
  447. Here are some etiquette reminders that will help us all to make the group
  448. an ever-friendlier place:
  449.  
  450. -- Please, before posting, ensure that you've read the basic Usenet
  451.    etiquette guide in news.announce.newusers.
  452.  
  453. -- Please consider the bluenote readership before you cross-post.  Consider
  454.    rec.music.misc for articles of general interest to all music fans.
  455.  
  456. -- Please set the Followup-To: line in your post.  This is especially
  457.    true if you are cross-posting.  If you are requesting information,
  458.    consider setting Followup-To: poster, and then summarizing the replies
  459.    to the net.
  460.  
  461. -- Particulary if you're posting upcoming concert information, consider
  462.    setting the Distribution: line in your post (for example: usa, na,
  463.    can, ba) to restrict posting to an appropriate local region.  [However,
  464.    some folks like to know what's going on elsewhere in the world.]
  465.  
  466. -- When following up, please change the Subject: line if the subject has
  467.    really changed.
  468.  
  469. -- Musical tastes differ.  Rec.music.bluenote, when at its best, is a
  470.    force that can aid education and tolerance.  Let's each of us try to
  471.    learn from one another.
  472.  
  473. ------------------------------
  474.  
  475. Subject: What have some common past topics been?
  476.  
  477. An incomplete list would include:
  478.  
  479.       Discussions of specific artists, often with discographies or record
  480.             reviews.
  481.       Pointers to upcoming festivals (Chicago Bluesfest, New Orleans Jazz
  482.             and Heritage festival, others).
  483.       Concert schedules and reviews.
  484.       Club listings.
  485.       Musical jam listings.
  486.       Discussion of music theory, performance practice, and instrument
  487.             techniques.
  488.       Pointers to books and magazines about jazz and blues.
  489.  
  490. ------------------------------
  491.  
  492. Subject: What are the best 100 jazz albums?
  493.  
  494. Even seasoned listeners won't agree on this topic.  Common recommendations
  495. include recordings by (roughly in historical order) Louis Armstrong, Duke
  496. Ellington, Charlie Parker, Miles Davis, Thelonious Monk, John Coltrane,
  497. Charles Mingus, and Ornette Coleman.  Most would agree that a discussion
  498. of jazz would be incomplete without including the recordings of these
  499. artists.
  500.  
  501. ------------------------------
  502.  
  503. Subject: What are the best 100 blues albums?
  504.  
  505. Again, tastes vary.  At the very least, no discussion would be complete
  506. without Robert Johnson, Leadbelly, and Muddy Waters.  A little further
  507. study brings you to Bessie Smith, Lightnin' Hopkins, John Lee Hooker,
  508. and hundreds of others.
  509.  
  510. ------------------------------
  511.  
  512. Subject: Is [jazz | blues] currently [dying | undergoing a rebirth]?
  513.  
  514. The press periodically rediscovers jazz and blues.  The news coverage
  515. accorded to rock is generally steady, but that accorded to jazz and blues
  516. seems to only become prominent when the press can seize on someone as
  517. "the leader of the new movement".  This may or may not be doing a favor
  518. for the leader so chosen [see Wynton, above :-) ]
  519.  
  520. In any case both musics seem to undergo periodic revivals; it's likely
  521. that neither is in any danger of dying out.  But opinions vary.
  522.  
  523. ------------------------------
  524.  
  525. Subject: Is [fusion | avant-garde | etc.] really jazz?
  526.  
  527. [A quote from Marcel-Franck Simon (mingus@usl.com) -- Mark]
  528. We can talk about something is "not jazz" without this meaning that it is
  529. not worth listening to.  I like, e.g. African pop, among others.  That
  530. doesn't mean .bluenote is the place to talk about them; moreover, saying
  531. so implies no disrespect for those musics.
  532.  
  533. ------------------------------
  534.  
  535. Subject: I think X is a much better player than Y.
  536.  
  537. These postings always create a great deal of controversy.  As subjective
  538. listeners we have preferences.  Certainly the approach of saying "I prefer
  539. X over Y because of A, B, and C" seems to shed more light than saying "I
  540. prefer X over Y because Y has A, B, and C wrong with him."
  541.  
  542. Nou Dadoun provides the following true story of a Sheila Jordan comment:
  543.  
  544.       In the fall of '88, Sheila Jordan and Bobby McFerrin were both in
  545.       Vancouver on the same night at different venues.  A fan went up to
  546.       Sheila at the end of the evening and said that she'd gone to hear
  547.       her instead of Bobby McFerrin because she's better.  Sheila responded
  548.       without a moment's hesitation, "I'm not better, I'm different".
  549.  
  550. ------------------------------
  551.  
  552. Subject: What are "Fake Books?"  What about "Real Books?"
  553.  
  554. "Fake books" are compilations of transcriptions of music, intended as
  555. aids to help one to learn to play the compositions.  Many vary in accuracy.
  556. Most are legitimate in regards to copyright payment.
  557.  
  558. The Real Book, on the other hand, was a compilation of transcriptions
  559. done by some Berklee students (that's Berklee College of Music in Boston,
  560. not U. Cal. Berkeley) which was photocopied and sold without any attention
  561. to copyright.  Supposedly the 'New Real Book' has the same focus (mostly
  562. jazz standards) but with fewer errors, and with the proper copyright fees
  563. paid (and better readability).  The original Real Book proliferated because
  564. of the usefulness of the tune selection compared to that of other fake
  565. books (you could get 'Dexterity' instead of 'California Here I Come').
  566.  
  567. ------------------------------
  568.  
  569. Subject: What do people think of Wynton Marsalis?
  570.  
  571. Wynton is a controversial figure in this group, and elsewhere, because
  572. of his strong views on the state of jazz today.  It seems true that
  573. developments in jazz from the late 60's to the present have failed to
  574. win the music a wide audience.  Wynton in some of his public comments
  575. seems to share the view that many people have that this is "bad."  This
  576. is certainly a matter of opinion; there is certainly no consensus among
  577. the readers here.
  578.  
  579. What the group consensus does seem to be is that Wynton, taken aside
  580. from his personal views and press buildup, produces music which may well
  581. be to many folks' liking, and that he has helped bring new listeners
  582. to jazz.
  583.  
  584. ------------------------------
  585.  
  586. Subject: Who did that music on the Charlie Brown specials?
  587.  
  588. The composer of the music on the first two or three specials was named
  589. Vince Guaraldi.  He has since passed away, and some of the later specials
  590. have been done by Judy Munson.  Several albums remain in print under
  591. Guaraldi's name.
  592.  
  593. Readers have also recommended an album of music to the film Black Orpheus
  594. "Cast Your Fate To The Wind (Jazz Impressions of `Black Orpheus')".  The
  595. music on that album (at least the title/theme song; probably all of it),
  596. is by Louis Bonfa.
  597.  
  598. ------------------------------
  599.  
  600. Subject: What is a "mojo"?
  601.  
  602. [answer provided by Derek Morgan ("Sleepy" of _Mojo Syndrome_), or
  603. (derek@wubios.wustl.edu) -- Mark]
  604.  
  605. MOJO (v) - 1) Casting a spell to cause a person to fall in love with the
  606.               person issuing the spell.
  607.      (n) - 2) The magical act of 1).
  608.  
  609. Well, it's not standard Webster's 8-), but as for a complete explanation:
  610.  
  611. The term is from the bayou country, and a "mojo" is generally the spell
  612. cast by a woman to catch a man.  It is NOT a love spell.  Romantic notions
  613. have nothing to do with a "mojo".  Generally, when one has been "mojoed",
  614. EVERYTHING in that person's life goes wrong.  Bad luck becomes worse luck,
  615. and physical problems occur.
  616.  
  617. There are generally two ways to get rid of a "mojo": 1) The woman becomes
  618. disinterested, and removes it; 2) You give her what she wants, and marry her.
  619.  
  620. Depending on the site of the folklore, there may be two additional ways to
  621. remove a "mojo": 1) Find her "mojo bag", which contains the secrets of her
  622. magic, and take it away from her; 2) Find a witch woman to break the mojo.
  623.  
  624. The theory is that people needed to explain why eligible and desirable men
  625. would marry less desirable (physically, I guess) women.  In some places, a
  626. "mojo" is not a thing to be taken lightly, and caution with the term would
  627. be advised.
  628.  
  629. As far as a man being able to "mojo" a woman, the general rule is that it
  630. doesn't happen very often; more likely the "mojo" effect will boomerang and
  631. afflict the male with the bad luck, instead of affecting the desired female.
  632. Probably has something to do with the fact that desirable women do not often
  633. marry less-desirable men.
  634.  
  635. "Mojo" has been occasionally used to mean a love spell, but it really isn't;
  636. it's just that the use of the term to symbolize obtaining a desired person
  637. has been generalized to include love potions, which is a different bayou
  638. subject altogether.
  639.  
  640. No, I am not making this up.  I needed to do the research for my band, Mojo
  641. Syndrome.
  642.  
  643. ------------------------------
  644.  
  645. Subject: Why isn't there a rec.music.jazz?  Rec.music.blues?
  646.  
  647. This has to do with the history of the group, and the feelings of the
  648. early creators and participants.  See below.
  649.  
  650. ------------------------------
  651.  
  652. Subject: A brief history of rec.music.bluenote.
  653.  
  654. The following history is from Marcel-Franck Simon (mingus@usl.com),
  655. included with permission.
  656.  
  657.     I was running mail.jazz and Rich Kulawiec was running mail.blues.
  658.     We were both on each other's lists, but there was no other relation-
  659.     ship.  Several people on mail.jazz had asked how come it was not a
  660.     newsgroup.  Finally Joe Hellerstein decided to do something about it...
  661.     There was a lot of talk about this, both private and on the respective
  662.     mailing lists, but a consensus eventually emerged that the musics were
  663.     pretty much sides of the same coin, and also that there was no other
  664.     place for either to go, and that some good synergies would develop
  665.     from these related, but distinct, points of view.  Note that this has
  666.     basically happened.
  667.  
  668.     On the name.  Sorry, it had nothing to do with the Blue Note label.
  669.     The name came out of a bunch of mail exchanges between Joe, Rich and
  670.     myself.  It was quite clear that including the blues meant the
  671.     [exclusion of the name] rec.music.jazz.  None of us liked any permu-
  672.     tations of rec.music.jazz_and_blues (thank goodness) ... I don't
  673.     remember the various proposals, but we came to agree on rec.music.
  674.     bluenotes, since blue notes permeate both jazz and of course the
  675.     blues (see, e.g. Monk's "Riding on a Blue Note").  The net discussion
  676.     and vote counting period all carried the bluenotes name, but when the
  677.     group got created, that final s somehow was lost.
  678.  
  679.     Chronology: all this occurred over the last four-five months of 1987.
  680.  
  681. Rich Kulawiec (rsk@gynko.circ.upenn.edu) recalled it this way:
  682.  
  683.     There wasn't nearly enough support on Usenet to create a "blues"
  684.     newsgroup and a "jazz" newsgroup at the time that rec.music.bluenote
  685.     was created.  There was *barely* enough to create r.m.bluenote, in
  686.     fact.  While it's probably true that the number of people reading
  687.     this group is increasing all the time, I would not be surprised to
  688.     find that there still isn't enough support for separate newsgroups.
  689.  
  690.     Oh, about the name: yes, I picked it, out of the ones suggested by
  691.     everybody who had an idea to contribute.  There was quite a bit of
  692.     discussion at the time (which I won't repeat here) and "bluenote"
  693.     seemed to be the name which satisfied the technical criteria and
  694.     expressed the purpose of the newgroup.  I don't think it's confusing
  695.     at all -- especially since any new user should read news.announce.
  696.     newusers ... before asking questions like "what is the purpose of
  697.     newsgroup X?"
  698.  
  699. ------------------------------
  700.  
  701. Subject: Support live music!  [FAQ Editor's personal soapbox]
  702.  
  703. [When Mark Boolootian (booloo@lll-crg.llnl.gov) commented on Sarah Vaughan's
  704. passing:
  705.  
  706.     She was supposed to play at Yoshi's (in Oakland) last month and I
  707.     was going to take my mom to see her.  I had assumed we'd catch her
  708.     next time...
  709.  
  710. My own, personal, response followed:
  711.  
  712.     Here's a melancholy realization I came to sometime last year.
  713.  
  714.     We have to _assume_ that there isn't a next time.  For me, there
  715.     wasn't for Bill Chase, and Lightning Hopkins, and Roy Buchanan, and
  716.     others.
  717.  
  718.     Folks, the time to pay tribute to these artists is while they're
  719.     living, by showing up when they're in town, checking them out,
  720.     applauding, and putting some bucks into their back pockets.
  721.  
  722.     So take that "job-critical" evening off and see Mal Waldron, or
  723.     drive 250 miles to see Steve Lacy, or drive through a tornado warning
  724.     to see Richard Dobson (outside the scope of this group, yes).  I've
  725.     done all these.  Now, over two years later, I can't remember what I
  726.     would have been doing if I hadn't gone.  Whatever it was just wasn't
  727.     that important, in the long run.
  728.  
  729.     Do it.  Some of the old lions in jazz and blues get their starts in
  730.     the 1930s and 1940s.  Check 'em out now, and celebrate while you can.
  731.  
  732.     I love records, mind you, but live music is where it happens, and
  733.     this music is meant to be loved -- live.
  734.